home *** CD-ROM | disk | FTP | other *** search
- // Script.boo, for wizard
-
- SiteManager = getMainSiteManager();
-
- RootFolder = getMainSiteManager().getPhysicalLayout().getRootFolder();
-
- RootFolder.wzDeleteGarbagePages();
-
- for i = 0 to RootFolder.getResourceNumber() - 1 do
- {
- Resource = RootFolder.getResource(i);
-
- if (Resource <> NULL) then
- if((typeof(Resource) = "DFrameSetResource") or
- (typeof(Resource) = "DPageResource")) then
- {
- Index = Resource.wzGetThemePageIndex();
-
- if(Index <> -1) then
- Resource.wzAdjustPage(Index, 1, 1, 1, 1);
- }
- }
-
-
-
-